- Shelf Life
- 13,516 Registers
- 12.9% Growth Rate
- 5.6 Years Doubling Time
- Scopus
- 52,000,000 Registers
- 4.13% Growth Rate
- 17 Years Doubling Time
shinyinclude_urlEscrever algum texto para finalizar a análise.
---
title: "A4F - Shelf Life"
output:
flexdashboard::flex_dashboard:
navbar:
- { title: "Research", href: "http://roneyfraga.com/dash/2020_A4F", align: right }
- { title: "People", href: "http://roneyfraga.com/dash/2020_A4F/#people", align: right }
- { title: "Patent", href: "http://roneyfraga.com/dash/2020_A4F/#patent", align: right }
- { title: "About", href: "http://roneyfraga.com/", align: right }
social: [ "menu" ]
source_code: "embed"
theme: bootstrap #yeti #lumen
logo: img/logo.png
runtime: shiny
---
```{r setup, include=FALSE}
options(scipen=999)
library(rmarkdown)
library(flexdashboard)
library(pipeR)
library(tidyverse)
library(rio)
library(ggraph)
library(tidygraph)
library(DT)
library(visNetwork)
library(igraph)
library(highcharter)
library(htmlwidgets)
library(printr)
library(shiny)
```
# General
Column {data-width=500 .tabset}
-------------------------------------
### Target
Qual área de pesquisa é emergente?
Qual pesquisador contratar?
Qual patente comprar?
### Growth
```{r}
import('data/growth_shelf_life.rds') %>>% (. -> d2)
hchart(d2, "column", hcaes(x = Year, y = Publications), name = "Publications", showInLegend = TRUE) %>>%
hc_add_series(d2, "line", hcaes(x = Year, y = predicted), name = "Predicted", showInLegend = TRUE) %>>%
hc_add_theme(hc_theme_elementary()) %>>%
hc_navigator( enabled = TRUE) %>>%
hc_exporting( enabled = TRUE, filename='groups_growth')
```
### Networks
```{r,dpi=240}
knitr::include_url('inseption_html/ioslides_default.html', height='70%')
```
### Groups Attributes
```{r}
import('data/groups_attributes.rds') %>>%
datatable(extensions = 'Buttons', rownames=F,
options = list(dom = 'Bfrtip', pageLength = 13,
buttons = list(list(
extend='collection',
buttons = list(list(extend='csv',filename='data'),
list(extend='excel',filename='data')),
text='Download')))) %>>%
formatRound('GrowthRateYear',1)
```
Column {data-width=500 .tabset}
-------------------------------------
### Shelf Life
Adicionar uma sentença sobre Shelf Life, para catecterizar a área de pesquisa.
> - __Shelf Life__
> - 13,516 Registers \n
> - 12.9% Growth Rate \n
> - 5.6 Years Doubling Time \n
> - __Scopus__
> - 52,000,000 Registers \n
> - 4.13% Growth Rate \n
> - 17 Years Doubling Time \n
>
### Segmented Growth
```{r, out.width='75%'}
import('data/segmented_growth.rds') %>>% (. -> d2)
hchart(d2, "line", hcaes(x = Year, y = ln_Publications), name = "Publications", showInLegend = TRUE, fillOpacity = 0.2) %>>%
hc_add_series(d2, "line", hcaes(x = Year, y = est), name = "Segmented Regression", showInLegend = TRUE, fillOpacity = 0.2) %>>%
hc_add_theme(hc_theme_elementary()) %>>%
hc_navigator( enabled = TRUE) %>>%
hc_exporting( enabled = TRUE, filename='segmented_growth') %>>%
hc_xAxis( plotBands = list( list( from = 1986, to = 1986, color = "#330000" ),
list( from = 1992, to = 1992, color = "#330000" ),
list( from = 2004, to = 2004, color = "#330000" )
))
```
### Groups Growth
```{r}
import('data/groups_growth.rds') %>>% (. -> groups_growth)
hchart(groups_growth, "line", hcaes(x = Year, y = Publications, group = Group), fillOpacity = 0.2) %>>%
hc_add_theme(hc_theme_elementary()) %>>%
hc_navigator( enabled = TRUE) %>>%
hc_exporting( enabled = TRUE, filename='groups_growth')
```
### Groups Description
```{r}
import('data/groups_description.txt') %>>%
datatable(extensions = 'Buttons', rownames=F,
options = list(dom = 'Bfrtip', pageLength = 13,
buttons = list(list(
extend='collection',
buttons = list(list(extend='csv',filename='data'),
list(extend='excel',filename='data')),
text='Download'))))
```
# g01 {data-navmenu="Groups"}
### Aplicação `shiny`
```{r echo=F, eval=T}
numericInput("obs", label = "Number of carbs:", 2, min=1, max=8)
show_mtcars <- reactive({
mtcars %>>%
dplyr::filter(carb == input$obs)
})
renderTable(show_mtcars())
```
# g02 {data-navmenu="Groups"}
### `include_url`
```{r,dpi=240}
knitr::include_url('inseption_html/ioslides_default.html')
```
# g03 {data-navmenu="Groups"}
```{r,dpi=100}
knitr::include_url('inseption_html/ioslides_default.html')
```
# g04 {data-navmenu="Groups"}
```{r,dpi=240}
knitr::include_url('inseption_html/DashboardingSlides.html', height='90%')
```
# g05 {data-navmenu="Groups"}
```{r,dpi=240}
knitr::include_url('inseption_html/slidy_default.html', height='90%')
```
# g06 {data-navmenu="Groups"}
### teste 0
```{r,dpi=240}
knitr::include_url('inseption_html/ioslides_default.html', height='90%')
```
### teste 1
# Conclusions
Escrever algum texto para finalizar a análise.
# People {.hidden}
Adicionar os grandes números do Lattes.
# Patent {.hidden}
Em construção.